home *** CD-ROM | disk | FTP | other *** search
/ Champak 145 / (Vol 145) Dec 21 2011.iso / Games / hearts.swf / scripts / frame_2 / DoAction.as
Encoding:
Text File  |  2011-12-21  |  748 b   |  25 lines

  1. stop();
  2. Stage.showMenu = false;
  3. Stage.scaleMode = "noScale";
  4. this.createTextField("sPreload",1,50,230,500,100);
  5. this.sPreload.embedFonts = true;
  6. this.sPreload.selectable = false;
  7. this.myformat = new TextFormat();
  8. this.myformat.font = "Fiolex Girls";
  9. this.myformat.color = 16777215;
  10. this.myformat.align = "center";
  11. this.onEnterFrame = function()
  12. {
  13.    if(preloader.getBytesLoaded() != preloader.getBytesTotal())
  14.    {
  15.       this.sPreload.text = "Loading Sounds: " + this.preloader.getBytesLoaded() / this.preloader.getBytesTotal() * 100;
  16.       this.sPreload.setTextFormat(this.myformat);
  17.    }
  18.    else
  19.    {
  20.       this.sPreload.text = "";
  21.       this.sPreload.setTextFormat(this.myformat);
  22.       delete this.onEnterFrame;
  23.    }
  24. };
  25.